home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Mine Sweeper / Source / event.h < prev    next >
Text File  |  1991-02-18  |  702b  |  39 lines

  1. /*    event.h
  2.  *
  3.  *        The event and error structures
  4.  */
  5.  
  6.  
  7. #ifndef __EVENT__
  8. #define __EVENT__
  9.  
  10. /****************************************************************/
  11. /*                                                                */
  12. /*                     Menu Data Structures                        */
  13. /*                                                                */
  14. /****************************************************************/
  15.  
  16.  
  17. /*
  18.  *                            Constants
  19.  */
  20.  
  21. #define    APPLMENU        128                /* Application Menu */
  22. #define        ABOUTME        1                /* About Me */
  23.  
  24. #define    FILEMENU        129                /* File Menu */
  25. #define        NEW            1
  26. #define        CLOSE        2
  27. #define        PREF        4
  28. #define        QUIT        6
  29.  
  30. #define    EDITMENU        130                /* Edit Menu */
  31.  
  32.  
  33. #define    WK_GAME            10                /* Window game closing    */
  34.  
  35. /****************************************************************/
  36.  
  37.  
  38. #endif
  39.